home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / userbox / publicdomain / minbar121 / install < prev    next >
Text File  |  1996-08-03  |  3KB  |  99 lines

  1. ; $VER: MinBar Installer 1.20 (16.10.94) by Steve Bleasdale
  2. ;
  3. ;-- Language specific string definitions --------------------------------------
  4.  
  5.     (set MSG_SPACE "\n\n\nInstalling this nice stuff will use \n up to 140Kilobytes of your hard disk space.")
  6.     (set MSG_DESTINATION "Where would you like MinBar to be installed?\n(MinBar will be directly copied there)")
  7.     (set MSG_DESTINATIONGTI "Where would you like MinBarGti to be installed?\n(MinBarGti will be directly copied there)")
  8.     (set MSG_COPYING "Going to copy %s to %s.")
  9.     (set @abort-button "Stop here!")
  10.     (set MSG_THANKS "Thank you for installing MinBar!\n\n\n;-)")
  11.  
  12.  
  13. (set installed "")
  14. (set @default-dest "Sys:Prefs")
  15.  
  16. (set dest_dir
  17.    (askdir (prompt (MSG_DESTINATION @app-name @app-name))
  18.            (help @askdir-help)
  19.            (default @default-dest)
  20.            (newpath))
  21. )
  22.  
  23. (set @default-dest dest_dir)
  24.  
  25. (copyfiles  (prompt (MSG_COPYING @app-name @default-dest))
  26.             (help @copyfiles-help)
  27.             (source "MinBar/MinBar")
  28.             (dest dest_dir)
  29.             (infos)
  30. )
  31. (set @default-dest "Sys:WbStartup")
  32. (set dest_dir
  33.    (askdir (prompt (MSG_DESTINATIONGTI @app-name @app-name))
  34.            (help @askdir-help)
  35.            (default @default-dest)
  36.            (newpath))
  37. )
  38.  
  39. (set @default-dest dest_dir)
  40.  
  41. (copyfiles  (prompt (MSG_COPYING @app-name @default-dest))
  42.             (help @copyfiles-help)
  43.             (source "MinBarGti/minBarGti")
  44.             (dest dest_dir)
  45.             (infos)
  46. )
  47.  
  48. (set @default-dest "HELP:")
  49. (set dest_dir
  50.    (askdir (prompt (MSG_DESTINATIONGTI @app-name @app-name))
  51.            (help @askdir-help)
  52.            (default @default-dest)
  53.            (newpath))
  54. )
  55.  
  56. (set @default-dest dest_dir)
  57.  
  58. (copyfiles  (prompt (MSG_COPYING @app-name @default-dest))
  59.             (help @copyfiles-help)
  60.             (pattern "#?")
  61.             (source "Doc/")
  62.             (dest dest_dir)
  63.             (files)
  64.             (confirm)
  65.             (infos)
  66. )
  67. (set @default-dest "ENVARC:")
  68. (set dest_dir
  69.    (askdir (prompt ("Copy the default preferences files where ?"))
  70.            (help @askdir-help)
  71.            (default @default-dest)
  72.            (newpath))
  73. )
  74.  
  75. (set @default-dest dest_dir)
  76.  
  77. (copyfiles  (prompt (MSG_COPYING @app-name @default-dest))
  78.             (help @copyfiles-help)
  79.             (pattern "#?")
  80.             (source "Env/")
  81.             (dest dest_dir)
  82.             (files)
  83.             (confirm)
  84.             (infos)
  85. )
  86.  
  87.  
  88. (copylib
  89.         (prompt "Copying WbStart.library to Libs:\n this is ©Stefan becker.")
  90.         (help @copylib-help)
  91.         (source "libs/wbstart.library")
  92.         (dest "Libs:")
  93.         (confirm)
  94. )
  95.  
  96. (message "Please reboot before running MinBar\n for the first time to ensure that \nanything in ENVARC: is copied to ENV:")
  97.  
  98.  
  99.